Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
# Conflicts:
#	pubspec.yaml
  • Loading branch information
kekko7072 committed May 28, 2023
2 parents 891782f + 6642289 commit d04fb4b
Show file tree
Hide file tree
Showing 14 changed files with 128 additions and 11 deletions.
Binary file added data/app.so
Binary file not shown.
1 change: 1 addition & 0 deletions data/flutter_assets/AssetManifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"CHANGELOG.md":["CHANGELOG.md"],"CONTRIBUTING.md":["CONTRIBUTING.md"],"assets/icon.png":["assets/icon.png"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]}
Binary file added data/flutter_assets/AssetManifest.smcbin
Binary file not shown.
63 changes: 63 additions & 0 deletions data/flutter_assets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Changelog
All notable changes to this project will be documented in this file.

[1.0.1]: https://github.com/kekko7072/lms/releases/tag/1.0.1

## [1.0.1] - 2023-03-15
### Fixed issue
- Solved issue on auto update on macOS due to Sandbox on XCode
### Added
- Implemented system of auto update and release on windows
- Added group of content

[1.1.0]: https://github.com/kekko7072/lms/releases/tag/1.1.0

## [1.1.0] - 2023-04-15
### Added
- Fixed issue on auto update on windows
- Fixed issue on dialog icon

## [1.0.1] - 2023-04-15
### Added
- Implemented system of auto update release on windows

[0.0.5]: https://github.com/kekko7072/lms/releases/tag/1.0.1

## [0.0.5] - 2023-03-06
### Added
- Implemented system of auto update release on macOS

## [0.0.4] - 2023-03-06
### Fixed issue
- Solved scroll bug with large contents
### Added
- Instruction on info file

[0.0.4]: https://github.com/kekko7072/lms/releases/tag/0.0.4

## [0.0.3] - 2023-02-07
### Fixed issue
- Solved bug on SQL
### Added
- Code snapshot as submodel of link

[0.0.3]: https://github.com/kekko7072/lms/releases/tag/0.0.3

## [0.0.2] - 2023-02-07
### Fixed issue
- Solved bug on opening
- Solved bug on changelog not showing.
### Added
- Release file for windows on README.md

[0.0.2]: https://github.com/kekko7072/lms/releases/tag/0.0.2

## [0.0.1] - 2022-04-17
### Added
- This CHANGELOG file to hopefully serve as an evolving example of a
standardized open source project CHANGELOG.
- PRE production
- DATABASE LOCAL tos tore the links and CRUD operations
- ABOUT PAGE with all the info about the app

[0.0.1]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.0.1
29 changes: 29 additions & 0 deletions data/flutter_assets/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Link Management System App

Welcome to the LMS (Link Management System) App repository! We appreciate your interest in contributing to the project. Here are some guidelines to help you get started:

## Getting Started

1. Fork the repository and clone it to your local machine.
2. Install the required dependencies by running `flutter pub get` in the root directory of the project.
3. Make sure the app is running correctly by running `flutter run` in the root directory of the project.

## Contributing

We welcome all contributions to the project, whether they are bug fixes, feature requests, or improvements to the code. If you're interested in contributing, please follow these steps:

1. Create a new branch for your changes using a descriptive name (e.g., `feature/new-feature-name`).
2. Make your changes and commit them with a clear message explaining what you've done.
3. Push your changes to your fork of the repository.
4. Submit a pull request to the main repository.

## Guidelines

Please follow these guidelines when contributing to the project:

- Follow the existing coding style and conventions.
- Write clear and concise commit messages.
- Write descriptive and informative pull request descriptions.
- Test your changes thoroughly before submitting a pull request.

Thank you for your interest in contributing to the LMS (Link Management System) App project! If you have any questions or need any help getting started, please don't hesitate to reach out to us.
1 change: 1 addition & 0 deletions data/flutter_assets/FontManifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}]
Binary file added data/flutter_assets/NOTICES.Z
Binary file not shown.
Binary file added data/flutter_assets/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file added data/flutter_assets/shaders/ink_sparkle.frag
Binary file not shown.
Binary file added data/icudtl.dat
Binary file not shown.
4 changes: 2 additions & 2 deletions windows/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Project-level configuration.
cmake_minimum_required(VERSION 3.14)
project(auto_updater_example LANGUAGES CXX)
project(lms LANGUAGES CXX)

# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "auto_updater_example")
set(BINARY_NAME "lms")

# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.
Expand Down
41 changes: 32 additions & 9 deletions windows/runner/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,40 @@
cmake_minimum_required(VERSION 3.14)
project(runner LANGUAGES CXX)

# Define the application target. To change its name, change BINARY_NAME in the
# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer
# work.
#
# Any new source files that you add to the application should be added here.
add_executable(${BINARY_NAME} WIN32
"flutter_window.cpp"
"main.cpp"
"utils.cpp"
"win32_window.cpp"
"${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc"
"Runner.rc"
"runner.exe.manifest"
)
"flutter_window.cpp"
"main.cpp"
"utils.cpp"
"win32_window.cpp"
"${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc"
"Runner.rc"
"runner.exe.manifest"
)

# Apply the standard set of build settings. This can be removed for applications
# that need different build settings.
apply_standard_settings(${BINARY_NAME})

# Add preprocessor definitions for the build version.
target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"")
target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}")
target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}")
target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}")
target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}")

# Disable Windows macros that collide with C++ standard library functions.
target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX")

# Add dependency libraries and include directories. Add any application-specific
# dependencies here.
target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app)
target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib")
target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}")
add_dependencies(${BINARY_NAME} flutter_assemble)

# Run the Flutter tool portions of the build. This must not be removed.
add_dependencies(${BINARY_NAME} flutter_assemble)

0 comments on commit d04fb4b

Please sign in to comment.