forked from opensourcepos/opensourcepos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'opensourcepos:master' into master
- Loading branch information
Showing
2,739 changed files
with
139,581 additions
and
125,871 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = tab | ||
insert_final_newline = true | ||
max_line_length = 120 | ||
tab_width = 4 | ||
|
||
[{*.cjs,*.js}] | ||
indent_style = tab | ||
|
||
[{*.ctp,*.hphp,*.inc,*.module,*.php,*.php4,*.php5,*.phtml}] | ||
indent_style = tab | ||
|
||
[{*.har,*.jsb2,*.jsb3,*.json,.babelrc,.eslintrc,.prettierrc,.stylelintrc,bowerrc,composer.lock,jest.config}] | ||
indent_style = tab | ||
|
||
[{*.htm,*.html,*.ng,*.sht,*.shtm,*.shtml}] | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
#-------------------------------------------------------------------- | ||
# ENVIRONMENT | ||
#-------------------------------------------------------------------- | ||
|
||
CI_ENVIRONMENT = production | ||
CI_DEBUG = false | ||
|
||
|
||
#-------------------------------------------------------------------- | ||
# APP | ||
#-------------------------------------------------------------------- | ||
app.appTimezone = 'UTC' | ||
|
||
#-------------------------------------------------------------------- | ||
# DATABASE | ||
#-------------------------------------------------------------------- | ||
|
||
database.default.hostname = 'localhost' | ||
database.default.database = 'ospos' | ||
database.default.username = 'admin' | ||
database.default.password = 'pointofsale' | ||
database.default.DBDriver = 'MySQLi' | ||
database.default.DBPrefix = 'ospos_' | ||
database.default.port = 3306 | ||
|
||
database.development.hostname = 'localhost' | ||
database.development.database = 'ospos' | ||
database.development.username = 'admin' | ||
database.development.password = 'pointofsale' | ||
database.development.DBDriver = 'MySQLi' | ||
database.development.DBPrefix = 'ospos_' | ||
database.development.port = 3306 | ||
|
||
database.tests.hostname = 'localhost' | ||
database.tests.database = 'ospos' | ||
database.tests.username = 'admin' | ||
database.tests.password = 'pointofsale' | ||
database.tests.DBDriver = 'MySQLi' | ||
database.tests.DBPrefix = 'ospos_' | ||
database.tests.charset = utf8mb4 | ||
database.tests.DBCollat = utf8mb4_general_ci | ||
database.tests.port = 3306 | ||
|
||
#-------------------------------------------------------------------- | ||
#-------------------------------------------------------------------- | ||
email.SMTPHost = '' | ||
email.SMTPUser = '' | ||
email.SMTPPass = '' | ||
email.SMTPPort = | ||
email.SMTPTimeout = 5 | ||
email.SMTPCrypto = 'tls' | ||
|
||
#-------------------------------------------------------------------- | ||
# ENCRYPTION | ||
#-------------------------------------------------------------------- | ||
|
||
encryption.key = '' | ||
|
||
#-------------------------------------------------------------------- | ||
# HONEYPOT | ||
#-------------------------------------------------------------------- | ||
|
||
honeypot.hidden = true | ||
honeypot.label = 'Fill This Field' | ||
honeypot.name = 'honeypot' | ||
honeypot.template = '<label>{label}</label><input type="text" name="{name}" value=""/>' | ||
honeypot.container = '<div style="display:none">{template}</div>' | ||
|
||
#-------------------------------------------------------------------- | ||
# LOGGER | ||
# - 0 = Disables logging, Error logging TURNED OFF | ||
# - 1 = Emergency Messages - System is unusable | ||
# - 2 = Alert Messages - Action Must Be Taken Immediately | ||
# - 3 = Critical Messages - Application component unavailable, unexpected exception. | ||
# - 4 = Runtime Errors - Don't need immediate action, but should be monitored. | ||
# - 5 = Warnings - Exceptional occurrences that are not errors. | ||
# - 6 = Notices - Normal but significant events. | ||
# - 7 = Info - Interesting events, like user logging in, etc. | ||
# - 8 = Debug - Detailed debug information. | ||
# - 9 = All Messages | ||
#-------------------------------------------------------------------- | ||
|
||
logger.threshold = 0 | ||
app.db_log_enabled = false | ||
app.db_log_only_long = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#-------------------------------------------------------------------- | ||
# ENVIRONMENT | ||
#-------------------------------------------------------------------- | ||
|
||
CI_ENVIRONMENT = production | ||
|
||
#-------------------------------------------------------------------- | ||
# DATABASE | ||
#-------------------------------------------------------------------- | ||
|
||
database.default.hostname = 'localhost' | ||
database.default.database = 'ospos' | ||
database.default.username = 'admin' | ||
database.default.password = 'pointofsale' | ||
database.default.DBDriver = 'MySQLi' | ||
database.default.DBPrefix = 'ospos_' | ||
|
||
database.development.hostname = 'localhost' | ||
database.development.database = 'ospos' | ||
database.development.username = 'admin' | ||
database.development.password = 'pointofsale' | ||
database.development.DBDriver = 'MySQLi' | ||
database.development.DBPrefix = 'ospos_' | ||
|
||
database.tests.hostname = 'localhost' | ||
database.tests.database = 'ospos' | ||
database.tests.username = 'admin' | ||
database.tests.password = 'pointofsale' | ||
database.tests.DBDriver = 'MySQLi' | ||
database.tests.DBPrefix = 'ospos_' | ||
|
||
#-------------------------------------------------------------------- | ||
# ENCRYPTION | ||
#-------------------------------------------------------------------- | ||
|
||
encryption.key = '' | ||
|
||
#-------------------------------------------------------------------- | ||
# LOGGER | ||
# - 0 = Disables logging, Error logging TURNED OFF | ||
# - 1 = Emergency Messages - System is unusable | ||
# - 2 = Alert Messages - Action Must Be Taken Immediately | ||
# - 3 = Critical Messages - Application component unavailable, unexpected exception. | ||
# - 4 = Runtime Errors - Don't need immediate action, but should be monitored. | ||
# - 5 = Warnings - Exceptional occurrences that are not errors. | ||
# - 6 = Notices - Normal but significant events. | ||
# - 7 = Info - Interesting events, like user logging in, etc. | ||
# - 8 = Debug - Detailed debug information. | ||
# - 9 = All Messages | ||
#-------------------------------------------------------------------- | ||
|
||
logger.threshold = 0 | ||
app.db_log_enabled = false | ||
|
||
#-------------------------------------------------------------------- | ||
# HONEYPOT | ||
#-------------------------------------------------------------------- | ||
|
||
honeypot.hidden = true | ||
honeypot.label = 'Fill This Field' | ||
honeypot.name = 'honeypot' | ||
honeypot.template = '<label>{label}</label><input type="text" name="{name}" value=""/>' | ||
honeypot.container = '<div style="display:none">{template}</div>' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
dist/ merge=ours | ||
application/language/**/*.php merge=ours | ||
text=auto | ||
app/Language/**/*.php merge=ours | ||
text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug", "triage"] | ||
projects: ["ospos/3", "ospos/4"] | ||
assignees: | ||
- none | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Bug reports indicate that something is not working as intended. | ||
Please include as much detail as possible and submit a separate bug report for each problem. | ||
Do not include personal identifying information such as email addresses or encryption keys. | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Bug Description? | ||
description: Describe the problem that you are seeing | ||
placeholder: "Describe the problem that you are seeing" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps-reproduce | ||
attributes: | ||
label: Steps to Reproduce? | ||
description: List the steps to reproduce this issue | ||
placeholder: "Steps to Reproduce" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected Behavior? | ||
description: Tell us what did you expect to happen? | ||
placeholder: "Expected Behavior" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: ospos-version | ||
attributes: | ||
label: OpensourcePOS Version | ||
description: What version of our software are you running? | ||
options: | ||
- opensourcepos 3.3.9 | ||
- opensourcepos 3.3.8 | ||
- opensourcepos 3.3.7 | ||
- development (unreleased) | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: php-version | ||
attributes: | ||
label: Php version | ||
description: What version of Php? | ||
options: | ||
- Php 7.2 | ||
- Php 7.3 | ||
- Php 7.4 | ||
- Php 8.1 | ||
- Php 8.2 | ||
- Php 8.3 | ||
- Php 8.4 | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
- Other | ||
- type: input | ||
id: server | ||
attributes: | ||
label: Server Operating System and version | ||
description: "Server Operating System " | ||
placeholder: "Server Operating System " | ||
validations: | ||
required: true | ||
- type: input | ||
id: database | ||
attributes: | ||
label: Database Management System and version | ||
description: "Database Management System" | ||
placeholder: "Database Management" | ||
validations: | ||
required: true | ||
- type: input | ||
id: webserver | ||
attributes: | ||
label: Web Server and version | ||
description: "Web Server and version " | ||
placeholder: "Web Server and version " | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: servers | ||
attributes: | ||
label: System Information Report (optional) | ||
description: Copy and paste from OSPOS > Configuration > Setup & Conf > Setup & Conf? | ||
placeholder: System Information Report | ||
value: "System Information Report" | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Unmodified copy of OpensourcePOS | ||
description: By submitting this issue you agree this copy has not been modified | ||
options: | ||
- label: I agree this copy has not been modified | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: ✨ Feature Request | ||
description: Suggest an idea for this project | ||
title: "[Feature]: " | ||
labels: ["enhancement"] | ||
assignees: ["none"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! 🤗 | ||
Please make sure this feature request hasn't been already submitted by someone by looking through other open/closed issues. 😃 | ||
- type: dropdown | ||
attributes: | ||
multiple: false | ||
label: Type of Feature | ||
description: Select the type of feature request. | ||
options: | ||
- "✨ New Feature" | ||
- "📝 Documentation" | ||
- "🎨 Style and UI" | ||
- "🔨 Code Refactor" | ||
- "⚡ Performance Improvements" | ||
- "✅ New Test" | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: ospos-version | ||
attributes: | ||
label: OpensourcePOS Version | ||
description: What version of our software are you running? | ||
options: | ||
- opensourcepos 3.3.9 | ||
- opensourcepos 3.3.8 | ||
- opensourcepos 3.3.7 | ||
default: 0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Give us a brief description of the feature or enhancement you would like | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional-information | ||
attributes: | ||
label: Additional Information | ||
description: Give us some additional information on the feature request like proposed solutions, links, screenshots, etc. | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Verify you searched open requests in OpensourcePOS | ||
description: By submitting this request you agree that you have searched Open Requests in the Tracker | ||
options: | ||
- label: I agree I have searched Open Requests | ||
required: true | ||
|
Oops, something went wrong.